Skip to main content

pgDataOfRow

Type

property

Summary

Get and set array of data from one row.

Syntax

set the pgDataOfRow of widget to {<NewDataOfRowArray>}
get the pgDataOfRow of widget

Description

Use the pgDataOfRow property to get and set an array of data from a row.

Before calling the pgDataOfRow property, you must point to the row you want to get or set the data from. This is done with the pgInternalPointer property.

Examples

on mouseUp
local tDataRowArray

# The following code shows how to get the fifth row data array.
set the pgInternalPointer of widget "PolyGrid" to "5" --> Row 5
put the pgDataOfRow of widget "PolyGrid" into tDataRowArray
end mouseUp